home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 21 / AMIGAplus Sonderheft 21 (1999)(ICP)(DE)[!].iso / Rexx / MUI-Demo.mrx < prev    next >
Text File  |  1999-08-18  |  538b  |  37 lines

  1. /*
  2. ** This script shows how to obtain
  3. ** general information on an application.
  4. */
  5.  
  6. options results
  7. address 'MUIDEMO.1'
  8.  
  9. 'info title'
  10. title = result
  11.  
  12. 'info author'
  13. author = result
  14.  
  15. 'info copyright'
  16. copyright = result
  17.  
  18. 'info description'
  19. description = result
  20.  
  21. 'info version'
  22. version = result
  23.  
  24. 'info base'
  25. base = result
  26.  
  27. 'info screen'
  28. screen = result
  29.  
  30. say "Title......: "title
  31. say "Author.....: "author
  32. say "Copyright..: "copyright
  33. say "Description: "description
  34. say "Version....: "version
  35. say "Basename...: "base
  36. say "Screen.....: "screen
  37.